home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / MantAirBall.swf / scripts / frame_1 / PlaceObject2_10_14 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Text File  |  2005-08-05  |  226 b   |  14 lines

  1. onClipEvent(enterFrame){
  2.    if(_root.increasethrust == true)
  3.    {
  4.       if(_root.thrust < 20)
  5.       {
  6.          _root.thrust += 0.5;
  7.       }
  8.    }
  9.    else if(_root.thrust > 0)
  10.    {
  11.       _root.thrust -= 0.5;
  12.    }
  13. }
  14.